home *** CD-ROM | disk | FTP | other *** search
/ Space Simulation Series 1: Lift Off / Liftoff Space Simulation Series Part 1 (ETI Entertainment)(2002).iso / Exploration / globals / javascript.js.bak < prev    next >
Text File  |  2002-03-26  |  556b  |  13 lines

  1. function newWindow(nwurl,nwspecs){
  2.   contentWindow = window.open(url,'contentWindow', specs);
  3. // specs gets set to a string with this exact order: 
  4. // 'toolbar=no,location=no,scrollbars=auto,width=360,height=370' (horizontal window)
  5. // 'toolbar=no,location=no,scrollbars=auto,width=280,height=460' (vertical window)
  6. }
  7.  
  8. function imageWindow(nwurl,width,height) {
  9.   width = width + 20;
  10.   height = height + 60;
  11.   contentWindow = window.open(nwurl,'contentWindow', 'toolbar=no,location=no,scrollbars=auto,width=' + width + ',height=' + height );
  12. }
  13.